home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 March
/
EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso
/
earcd
/
music
/
omdpt123.lha
/
OMED_PT123.lzx
/
rexx
/
Killtrack.omed
< prev
next >
Wrap
Text File
|
1980-02-28
|
498b
|
27 lines
/* Kill track - Case 18-10-95 */
address OCTAMED_REXX
options results
'wi_request "Kill track?" "Full track|Only following notes|Cancel"'; answer = result
if answer ~= 0
then do
if answer = 2
then do
'op_update off'
'ed_killnotes currtrack'
'op_update on'
'wi_showstring KILLED'
exit
end
else do
'op_update off'
'ed_getcurrline var currline'
'ed_goto line 0'
'ed_killnotes currtrack'
'ed_goto line' currline
'op_update on'
'wi_showstring KILLED'
end
else
exit